time.Location.lookup (method)

12 uses

	time (current package)
		format.go#L1364: 		name, offset, _, _, _ := local.lookup(t.unixSec())
		format_rfc3339.go#L146: 		if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
		time.go#L472: 			_, offset, _, _, _ := l.lookup(sec)
		time.go#L493: 			name, offset, _, _, _ = l.lookup(sec)
		time.go#L1164: 	name, offset, _, _, _ = t.loc.lookup(t.unixSec())
		time.go#L1174: 	_, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
		time.go#L1316: 	} else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
		time.go#L1423: 	_, _, _, _, isDST := t.loc.lookup(t.Unix())
		time.go#L1505: 	_, offset, start, end, _ := loc.lookup(unix)
		time.go#L1511: 			_, offset, _, _, _ = loc.lookup(utc)
		zoneinfo.go#L145: func (l *Location) lookup(sec int64) (name string, offset int, start, end int64, isDST bool) {
		zoneinfo.go#L620: 			nam, offset, _, _, _ := l.lookup(unix - int64(zone.offset))